072a091e368b74473b14f04d0468cc811a3deff1,NeurophStudio/NeurophExplorer/src/org/neuroph/netbeans/explorer/LayerNode.java,ChildrenSetCallable,call,#,81

Before Change



        @Override
        public Children call() throws Exception {
            if (key.getNeurons().length == 0) {
                return Children.LEAF;
            } else {
                // synchronous so that selection of members doesn't miss (if everything was not yet generated)

After Change



        @Override
        public Children call() throws Exception {
            if (key.getNeurons().size() == 0) {
                return Children.LEAF;
            } else {
                // synchronous so that selection of members doesn't miss (if everything was not yet generated)